home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / PureBasic / Extras / Localisation / PB_Compiler.cd < prev    next >
Encoding:
Text File  |  2000-01-01  |  5.1 KB  |  284 lines

  1. #language english
  2. #version 1
  3. ;
  4. ; *** Catalog description for PureBasic Compiler V1.50 ***
  5. ;
  6. ; !!!! DO NOT TOUCH THIS '.cd' FILE !!!!
  7. ;
  8. ; Rename the 'english.ct' file to 'yourlanguage.ct' and translate the strings
  9. ; in 'yourlanguage.ct' into your language. The translated strings shouldn't be
  10. ; longer than the original strings.
  11. ;
  12. ; Finally use Flexcat to create your catalog:
  13. ;
  14. ; 'Flexcat PureBasic_Editor.cd YourLanguage.ct CATALOG PureBasic_Editor.catalog'
  15. ;
  16. ; Create a directory 'Catalogs/yourlanguage' and then
  17. ; copy 'PureBasic_Editor.catalog' in the 'Catalogs/yourlanguage' directory.
  18. ;
  19. ; Flexcat is freeware (c) by Jochen Wiedmann and available on Aminet.
  20. ;
  21. ;
  22. ;
  23. ;
  24. COMPILER_Error (//)
  25. Error
  26. ;
  27. COMPILER_StartingCompilation (//)
  28. Starting compilation
  29. ;
  30. COMPILER_CompilingLine (//)
  31. Compiling Line:
  32. ;
  33. COMPILER_ErrorAtLine (//)
  34. Error at line
  35. ;
  36. COMPILER_Ok (//)
  37. Ok
  38. ;
  39. COMPILER_Abort (//)
  40. Abort
  41. ;
  42. ;
  43. ; Now this part will deal with internal compiler error, sorted by number.
  44. ;
  45. ERROR_1 (//)
  46. Syntax Error !
  47. ;
  48. ERROR_2 (//)
  49. Too many '(' parenthesis
  50. ;
  51. ERROR_3 (//)
  52. Too many ')' parenthesis
  53. ;
  54. ERROR_4 (//)
  55. Garbage to the end of line
  56. ;
  57. ERROR_5 (//)
  58. Overflow error, trying to write a long value inside a word variable
  59. ;
  60. ERROR_6 (//)
  61. ')' expected
  62. ;
  63. ERROR_7 (//)
  64. Trying to put numeric value into string variable
  65. ;
  66. ERROR_8 (//)
  67. Can't mix strings with numerical values
  68. ;
  69. ERROR_9 (//)
  70. Trying to put string into numeric variable
  71. ;
  72. ERROR_10 (//)
  73. The specified variable type is different than before
  74. ;
  75. ERROR_11 (//)
  76. The specified number is incorrect for the ASL/LSL/ASR/LSR commands (must be 1-31)
  77. ;
  78. ERROR_12 (//)
  79. () is not a function, an array, or a linked list  ; ErrorInfo
  80. ;
  81. ERROR_13 (//)
  82. Abnormal error ! Please mail us at alphasnd@free.fr
  83. ;
  84. ERROR_14 (//)
  85. Bad parameter type: a string was expected
  86. ;
  87. ERROR_15 (//)
  88. Bad argument type: an array was expected
  89. ;
  90. ERROR_16 (//)
  91. Bad argument type: a linked list was expected
  92. ;
  93. ERROR_17 (//)
  94. Strange error: object type not detected
  95. ;
  96. ERROR_18 (//)
  97. Another 'End Condition' operand is expected here
  98. ;
  99. ERROR_19 (//)
  100. An array must have a name
  101. ;
  102. ERROR_20 (//)
  103. A constant numeric value is expected after 'Step'
  104. ;
  105. ERROR_21 (//)
  106. After 'For' you must have 'To'
  107. ;
  108. ERROR_22 (//)
  109. Illegal expression to For/Next. Must be: 'For Var=Expression To'
  110. ;
  111. ERROR_23 (//)
  112. Bad variable for this 'Next'
  113. ;
  114. ERROR_24 (//)
  115. A variable is waited after 'Next'
  116. ;
  117. ERROR_25 (//)
  118. Only a literal string can be put after 'IncludeBinary'
  119. ;
  120. ERROR_26 (//)
  121. Only a literal string can be put after 'IncludePath'
  122. ;
  123. ERROR_27 (//)
  124. Only a literal string can be put after 'IncludeFile'
  125. ;
  126. ERROR_28 (//)
  127. Only a literal string can be put after 'XIncludeFile'
  128. ;
  129. ERROR_29 (//)
  130. XIncluded file not found (
  131. ;
  132. ERROR_30 (//)
  133. A valid type must be specified after 'DefType'
  134. ;
  135. ERROR_31 (//)
  136. Included file not found ( ; ErrorInfo
  137. ;
  138. ERROR_32 (//)
  139. Unfinished condition
  140. ;
  141. ERROR_33 (//)
  142. PhxAss error ! Please mail us this file.
  143. ;
  144. ERROR_34 (//)
  145. Illegal operator for 'DefType'
  146. ;
  147. ERROR_35 (//)
  148. You can't define a procedure inside another procedure
  149. ;
  150. ERROR_36 (//)
  151. Impossible to create this procedure !
  152. ;
  153. ERROR_37 (//)
  154. 'EndProcedure' without 'Procedure'
  155. ;
  156. ERROR_38 (//)
  157. 'Global' only accept 'Variables'
  158. ;
  159. ERROR_39 (//)
  160. 'Shared' only accept 'Variables'
  161. ;
  162. ERROR_40 (//)
  163. 'Shared' can be used only inside a procedure
  164. ;
  165. ERROR_41 (//)
  166. 'Else' without 'If'
  167. ;
  168. ERROR_42 (//)
  169. 'Wend' without 'While'
  170. ;
  171. ERROR_43 (//)
  172. 'Until' without 'Repeat'
  173. ;
  174. ERROR_44 (//)
  175. 'EndIf' without 'If'
  176. ;
  177. ERROR_45 (//)
  178. 'EndSelect' without 'Select'
  179. ;
  180. ERROR_46 (//)
  181. 'Forever' without 'Repeat'
  182. ;
  183. ERROR_47 (//)
  184. 'Next' without 'For'
  185. ;
  186. ERROR_48 (//)
  187. '(' is missing after the function call
  188. ;
  189. ERROR_49 (//)
  190. ')' is missing to close the function
  191. ;
  192. ERROR_50 (//)
  193. Too few argument for the function
  194. ;
  195. ERROR_51 (//)
  196. 'Structure' offset ins't found
  197. ;
  198. ERROR_52 (//)
  199. Too many parameters for this function
  200. ;
  201. ERROR_53 (//)
  202. Too few argument for the procedure
  203. ;
  204. ERROR_54 (//)
  205. Numbers between '' are limited to 4 characters
  206. ;
  207. ERROR_55 (//)
  208. Too many arguments for the procedure
  209. ;
  210. ERROR_56 (//)
  211. Not a valid Decimal number
  212. ;
  213. ERROR_57 (//)
  214. Not a valid Hexadecimal number
  215. ;
  216. ERROR_58 (//)
  217. Not a valid Binary number
  218. ;
  219. ERROR_59 (//)
  220. Numeric overflow: too big number
  221. ;
  222. ERROR_60 (//)
  223. Constant not found
  224. ;
  225. ERROR_61 (//)
  226. Constant list is FULL !
  227. ;
  228. ERROR_62 (//)
  229. A constant can't be composed by a variable or a function
  230. ;
  231. ERROR_63 (//)
  232. This constant has already been declared
  233. ;
  234. ERROR_64 (//)
  235. A constant must have a name !
  236. ;
  237. ERROR_65 (//)
  238. 'EndStructure' without 'Structure'
  239. ;
  240. ERROR_66 (//)
  241. A variable in a 'Structure' need a declared Type
  242. ;
  243. ERROR_67 (//)
  244. A 'Struture' must have a Name !
  245. ;
  246. ERROR_68 (//)
  247. Can't build this 'Structure' (name already took ?)
  248. ;
  249. ERROR_69 (//)
  250. Can't have 'Structure' in Structure
  251. ;
  252. ERROR_70 (//)
  253. Can't do it, would cause endless recursivity
  254. ;
  255. ERROR_71 (//)
  256. 'Structure' not found
  257. ;
  258. ERROR_72 (//)
  259. 'EndStructure' is missing
  260. ;
  261. ERROR_73 (//)
  262. 'EndProcedure' is missing
  263. ;
  264. ERROR_74 (//)
  265. This variable doesn't have a 'Structure'
  266. ;
  267. ERROR_75 (//)
  268. This list doesn't have a 'Structure'
  269. ;
  270. ERROR_76 (//)
  271. 'NewList' syntax is: NewList listname()
  272. ;
  273. ERROR_77 (//)
  274. 'Dim' syntax is: Dim arrayname(nb)
  275. ;
  276. ERROR_78 (//)
  277. must be called in your program
  278. ;
  279. ERROR_79 (//)
  280. ' is not a valid operator
  281. ;
  282. ERROR_80 (//)
  283. Source too large for the demo version
  284.